home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
SLAX 6.0.8
/
slax-6.0.8.iso
/
slax
/
make_iso.bat
< prev
next >
Wrap
DOS Batch File
|
2008-11-21
|
658b
|
29 lines
@ECHO OFF
REM ----------------------------------------------------
REM Batch file to create bootable ISO in Windows
REM usage: make_iso.bat c:\new-slax.iso
REM author: Tomas M. <http://www.linux-live.org>
REM ----------------------------------------------------
if "%1"=="" goto error1
cd ..
set CDLABEL=SLAX
slax\tools\WIN\mkisofs.exe @slax\tools\WIN\config -o "%1" -A "%CDLABEL%" -V "%CDLABEL%" .
echo.
echo New ISO should be created now.
goto theend
:error1
echo A parameter is required - target ISO file.
echo Example: %0 c:\target.iso
goto theend
:error2
echo Error creating the ISO file
goto theend
:theend
pause